tree class meaning in English
树木级
Examples
- Simple binary tree class - binary search trees are useful for finding items in a list that changes infrequently
二叉搜索树在查找经常变化的列表时是很非常有用的。 - Binary tree class - a binary tree is a data structure with nodes that include no more than two linked nodes . they are often used for sorting data
二叉树是一个具有节点的数据结构,其每个节点最多包含两个子节点。它们经常用来排序数据。 - It takes a plain javacc grammar file as input and automatically generates the following : a set of syntax tree classes based on the productions in the grammar using the visitor design pattern ; two interfaces visitor and objectvisitor ; two depth - first visitors depthfirstvisitor and objectdepthfirst ; and a javacc grammar with the proper annotations to build the syntax tree during parsing
它把普通的javacc语法文件作为输入并自动生成下列各项:基于语法中的生成的一组语法树类(使用visitor设计模式) ;两个接口( visitor和objectvisitor ) ;两个深度优先访问器( depthfirstvisitor和objectdepthfirst ) ;和一个带正确注释的javacc语法(用于在解析期间构建语法树) 。